home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / c / c-tools-.000 / c-tools- / c-tools-0.4 / misc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-13  |  164 b   |  10 lines

  1. #ifndef __MISC_H
  2. #define __MISC_H
  3.  
  4. #include <stddef.h>
  5.  
  6. extern void *xmalloc (size_t size);
  7. extern void *xrealloc (void *oldp, size_t size);
  8.  
  9. #endif /* __MISC_H */
  10.